home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / sendmail / sendmail-5.65c+IDA-1.4.4.1 / support / perror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-12-16  |  1.7 KB  |  67 lines

  1. /*
  2.  * Copyright (c) 1988 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms are permitted
  6.  * provided that the above copyright notice and this paragraph are
  7.  * duplicated in all such forms and that any documentation,
  8.  * advertising materials, and other materials related to such
  9.  * distribution and use acknowledge that the software was developed
  10.  * by the University of California, Berkeley.  The name of the
  11.  * University may not be used to endorse or promote products derived
  12.  * from this software without specific prior written permission.
  13.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  14.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  15.  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  16.  */
  17.  
  18. #if defined(LIBC_SCCS) && !defined(lint)
  19. static char sccsid[] = "@(#)perror.c    5.7 (Berkeley) 12/16/88";
  20. #endif /* LIBC_SCCS and not lint */
  21.  
  22. #include <sys/types.h>
  23. #include <sys/uio.h>
  24.  
  25. int errno;
  26. extern int sys_nerr;
  27. extern char *sys_errlist[];
  28.  
  29. static char ebuf[20];
  30.  
  31. perror(s)
  32.     char *s;
  33. {
  34.     struct iovec iov[4];
  35.     register struct iovec *v = iov;
  36.  
  37.     if (s && *s) {
  38.         v->iov_base = s;
  39.         v->iov_len = strlen(s);
  40.         v++;
  41.         v->iov_base = ": ";
  42.         v->iov_len = 2;
  43.         v++;
  44.     }
  45.     if ((u_int)errno < sys_nerr)
  46.         v->iov_base = sys_errlist[errno];
  47.     else {
  48.         (void)sprintf(ebuf, "Unknown error: %d", errno);
  49.         v->iov_base = ebuf;
  50.     }
  51.     v->iov_len = strlen(v->iov_base);
  52.     v++;
  53.     v->iov_base = "\n";
  54.     v->iov_len = 1;
  55.     (void)writev(2, iov, (v - iov) + 1);
  56. }
  57.  
  58. char *
  59. strerror(errnum)
  60.     int errnum;
  61. {
  62.     if ((u_int)errnum < sys_nerr)
  63.         return(sys_errlist[errnum]);
  64.     (void)sprintf(ebuf, "Unknown error: %d", errnum);
  65.     return(ebuf);
  66. }
  67.